AiLow

 

The 'AiLow' function returns the Low setting value of AI tag.

 

double @AiLow(string tag);

 

Parameters

string tag : Name of AI tag

 

Return Value

Low setting value of AI tag

 

Example

value = @AiLow("ai05");

Description : The Low setting value of AI tag named 'ai05' is stored in the variable named 'value'.

 

Ex1) Assume that the setting value of AI tag is set as follows : HiHi->100, High -> 90, Low -> 30, LoLo -> 20

         In this case, if ' value = @AiLoLO("ai05"); ' is executed, '30' is stored in the variable named 'value'

 

Ex2) If you want to change the Low setting value of AI tag named 'ai05', use 'Tag Member'.

          ' $ai03.LoLo = 40; ' changes the Low setting value of AI tag named 'ai05' into '40'

 

Relate items)

Tag Member